home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / program / pcl4w13.zip / SIMPLE._B_ < prev    next >
Text File  |  1996-07-10  |  905b  |  36 lines

  1. #
  2. # Borland makefile for SIMPLE
  3. #
  4. # To use: "maker -fsimple._B_"
  5. # Note: Use "maker", not "make"
  6. #
  7. # Note: Replace the reference "D:\COMPILER\BC45\INCLUDE" below
  8. #       with your compilers INCLUDE path.
  9. #
  10.  
  11. C_FLAGS = -c -2
  12. L_FLAGS = -c -n -Tw
  13.  
  14. simple.exe: simple.res simple.obj simple.def pcl4w.lib \
  15.             about.obj line.obj paint.obj sioerror.obj
  16.     tlink -c -n -Tw  c0ws @simple.rsp ,simple,simple,pcl4w mathws cws import,simple,simple
  17.     rlink simple.res simple.exe
  18.  
  19. simple.res: simple.rc
  20.     brcc -iD:\COMPILER\BC45\INCLUDE simple.rc
  21.  
  22. about.obj: about.c about.h
  23.    bcc $(C_FLAGS)  about.c
  24.  
  25. simple.obj: simple.c simple.h pcl4w.h
  26.    bcc $(C_FLAGS)  simple.c
  27.  
  28. sioerror.obj: sioerror.c sioerror.h pcl4w.h
  29.    bcc $(C_FLAGS)  sioerror.c
  30.  
  31. paint.obj: paint.c paint.h pcl4w.h
  32.     bcc $(C_FLAGS)  paint.c
  33.  
  34. line.obj: line.c line.h pcl4w.h
  35.     bcc $(C_FLAGS)  line.c
  36.